home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / FLTK-1.0.6 / src / fl_oval_box.cxx < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-07  |  2.0 KB  |  65 lines

  1. //
  2. // "$Id: fl_oval_box.cxx,v 1.4 1999/01/07 19:17:40 mike Exp $"
  3. //
  4. // Oval box drawing code for the Fast Light Tool Kit (FLTK).
  5. //
  6. // Copyright 1998-1999 by Bill Spitzak and others.
  7. //
  8. // This library is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU Library General Public
  10. // License as published by the Free Software Foundation; either
  11. // version 2 of the License, or (at your option) any later version.
  12. //
  13. // This library is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. // Library General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU Library General Public
  19. // License along with this library; if not, write to the Free Software
  20. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. // USA.
  22. //
  23. // Please report all bugs and problems to "fltk-bugs@easysw.com".
  24. //
  25.  
  26.  
  27. // Less-used box types are in seperate files so they are not linked
  28. // in if not used.
  29.  
  30. #include <FL/Fl.H>
  31. #include <FL/fl_draw.H>
  32.  
  33. static void fl_oval_flat_box(int x, int y, int w, int h, Fl_Color c) {
  34.   fl_color(c);
  35.   fl_pie(x, y, w, h, 0, 360);
  36. }
  37.  
  38. static void fl_oval_frame(int x, int y, int w, int h, Fl_Color c) {
  39.   fl_color(c);
  40.   fl_arc(x, y, w, h, 0, 360);
  41. }
  42.  
  43. static void fl_oval_box(int x, int y, int w, int h, Fl_Color c) {
  44.   fl_oval_flat_box(x,y,w-1,h-1,c);
  45.   fl_oval_frame(x,y,w,h,FL_BLACK);
  46. }
  47.  
  48. static void fl_oval_shadow_box(int x, int y, int w, int h, Fl_Color c) {
  49.   fl_oval_flat_box(x+3,y+3,w,h,FL_DARK3);
  50.   fl_oval_box(x,y,w,h,c);
  51. }
  52.  
  53. extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*);
  54. Fl_Boxtype define_FL_OVAL_BOX() {
  55.   fl_internal_boxtype(_FL_OSHADOW_BOX,fl_oval_shadow_box);
  56.   fl_internal_boxtype(_FL_OVAL_FRAME,fl_oval_frame);
  57.   fl_internal_boxtype(_FL_OFLAT_BOX,fl_oval_flat_box);
  58.   fl_internal_boxtype(_FL_OVAL_BOX,fl_oval_box);
  59.   return _FL_OVAL_BOX;
  60. }
  61.  
  62. //
  63. // End of "$Id: fl_oval_box.cxx,v 1.4 1999/01/07 19:17:40 mike Exp $".
  64. //
  65.